home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20040907.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  67 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(14676);
  10.  script_version ("$Revision: 1.3 $");
  11.  script_bugtraq_id(11140, 11139, 11138, 11137, 11136, 11135);
  12.  script_cve_id("CAN-2004-0493", "CAN-2004-0488", "CAN-2004-0821", "CAN-2004-0822", "CAN-2004-0607", "CAN-2004-0523", "CAN-2004-0794", "CAN-2004-0823");  #"CAN-2004-0175", "CAN-2004-0824", "CAN-2004-0825", "CAN-2004-0426", "CAN-2004-0361"); #, "CAN2004-0720", "CAN-2004-0521", "CAN-2004-0183", "CAN-2004-0184");
  13.  name["english"] = "Security Update 2004-09-07";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host is missing Security Update 2004-09-07.
  19.  
  20. This security update fixes the following components :
  21.  
  22. - CoreFoundation
  23. - IPSec
  24. - Kerberos
  25. - libpcap
  26. - lukemftpd
  27. - NetworkConfig
  28. - OpenLDAP
  29. - OpenSSH
  30. - PPPDialer
  31. - rsync
  32. - Safari
  33. - tcpdump
  34.  
  35.  
  36.  
  37. Solution : http://docs.info.apple.com/article.html?artnum=61798
  38. Risk factor : High";
  39.  
  40.  
  41.  script_description(english:desc["english"]);
  42.  
  43.  summary["english"] = "Check for Security Update 2004-09-07";
  44.  script_summary(english:summary["english"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  49.  family["english"] = "MacOS X Local Security Checks";
  50.  script_family(english:family["english"]);
  51.  
  52.  script_dependencies("ssh_get_info.nasl");
  53.  script_require_keys("Host/MacOSX/packages");
  54.  exit(0);
  55. }
  56.  
  57.  
  58. packages = get_kb_item("Host/MacOSX/packages");
  59. if ( ! packages ) exit(0);
  60.  
  61. uname = get_kb_item("Host/uname");
  62. # MacOS X 10.2.8, 10.3.4 and 10.3.5 only
  63. if ( egrep(pattern:"Darwin.* (6\.8\.|7\.[45]\.)", string:uname) )
  64. {
  65.   if ( ! egrep(pattern:"^SecUpd(Srvr)?2004-09-07", string:packages) ) security_hole(0);
  66. }
  67.